StartSamplingRequest

data class StartSamplingRequest(samplingInterval: Int?, suppressRandomness: Boolean?)

Represents request frame that can be used with Memory#startSampling operation call.

Start collecting native memory profile.

See also

Constructors

StartSamplingRequest
Link copied to clipboard
fun StartSamplingRequest(samplingInterval: Int? = null, suppressRandomness: Boolean? = null)

Properties

samplingInterval
Link copied to clipboard
val samplingInterval: Int? = null
Average number of bytes between samples.
suppressRandomness
Link copied to clipboard
val suppressRandomness: Boolean? = null
Do not randomize intervals between samples.

Sources

jvm source
Link copied to clipboard